/*
Main Color
#F6ADC6; ピンク
#F0F8FF; アリスブルー
#F6F7F8 スノーグレー
#292524 黒に近いグレー
*/
@charset "UTF-8";
        html {
            font-size: 100%;
        }

h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 22px;
  }
}

        /* デスクトップ版
------------------------------- */
.pointer {
   cursor : pointer;
}

/* デフォルトCSS
------------------------------- */

.background-black {
    background: black;    
}

.text-black {
  color: black;
}
.text-white {
  color: white;
}
.text-pink {
  color: #F6ADC6;
}
.text-grey {
  color: #F0F8FF;
}
.text-dark-grey {
  color: #292524;
}

/*p&aタグの文字色を白にする*/
p,a,form,body,h,button,input,span{
    color: white;    
}

.vanish {
    display: none;
}
.center {
    text-align: center;
    background: black;
}
.center2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.flex {
    display: flex;
}
.width100 {
    width: 100%;
}

/* lavelの色を反転させる */
.submit-label {
  display: inline-block;
  cursor: pointer;
  color: #F6ADC6;
}

.submit-label:hover {
  color: blue;
}

/*リンクカラーを背景黒に対応した色へ変更*/
.link {
  color: white;
  text-decoration: none;
}
.link:hover{
  color: #F6ADC6;
  text-decoration: underline;
}
#link {color: #F6ADC6;}
body {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", "sans-serif";
    line-height: 1.7;
    background-color: black;

}

.site-header {
    display: flex;
    justify-content: space-between;/*子要素の配置を分散する*/
    align-items: center;
    flex-wrap: wrap;/*横スクロール防止*/
    position: fixed; /* ヘッダーを固定 */
    top: 0;        /* 画面上部に配置 */
    left: 0;
    width: 100%;   /* 横幅いっぱいに */
    z-index: 1000;
}

.nav {
  
  color: white;
  display: flex;
}

/*トップmenuのデフォルトカラー*/
.main-nav {
    width: 60px;
    display: flex;          
    height: 80px;
    font-family: 'Philosophere', sans-serif;
    font-size: 30px;
}
.main-nav a{
    color: #F6F7F8;
    margin-left: 0px;/*要素ごとの行間*/            
    margin-right: 0px;
}
/*トップmenuにマウスオーバーしたときのカラー変更*/
.main-nav a:hover{
    color: #F6ADC6;
}
.content-nav {
    display: flex;
    flex-wrap: wrap;/*横スクロール防止*/
}


    .btn_01 button{
    text-align: center;
    font-weight: bold;
    margin-left: 10px;       
    color: #F6F7F8;
}

/*マウスオーバー デフォルト画像集ボタンのカラーリング*/
.btn_01:hover button{
    color: #F6ADC6;
    background: #F0F8FF;/*アリスブルー*/
}
        
        
/* スライドショー
------------------------------- */


        .slideshow {
            position: relative; /* absoluteの参照先で必要 */
            transition: opacity 1s ease-in-out;
        }
        
        #slideshow img {
           position: absolute;/* 「一番近い position: relative、absolute、fixed のいずれかを持つ親含む祖先要素」を基準に配置されます。*/
           border-radius: 10%;
           top: 0px;
           z-index: 1;
           opacity: 0.0;
        }
        #slideshow img.active{
           z-index: 10;
           opacity: 1.0;
        }
        #slideshow img.last-active {
           z-index: 2;
        }
         .slideImageSize{
            width: 80%;
            height: auto;
         }

/* 
------------------------------- */
#h1,#h2 {
  margin-bottom: 50px;
}

/* 目次録
------------------------------- */

.btn,
span.btn,
button.btn {
  font-size: 1.0rem;
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: white;
  border-radius: 0.5rem;
}

span.btn--top {
position: relative;/*親要素（div）の位置を基準として絶対的な位置を決める方式*/   
}
span.btn--orange {
  color: white;
  background-color: black;
  border-bottom: 5px solid ;
}
span.btn--orange:hover {
  margin-top: 3px;
  color: #F6ADC6;/*ピンク*/
  background: black;
  border-bottom: 2px solid;
}
span.btn--shadow {
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}

.caption {
      color: #F6ADC6;/*ピンク*/
}


/* もしもECHOをスライドショーにする
------------------------------- */

.slideshow-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
/*.slide-author-by-title-history,.slide-publisher-by-title-history,.slide-author-history,.slide-publisher-history*/
.slide-author-by-title-history,.slide-publisher-by-title-history,.slide-author-history,.slide-publisher-history {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  padding: 20px;
  background: white;
  box-sizing: border-box;
}
/*.slide-author-by-title-history.active,.slide-publisher-by-title-history.active,.slide-author-history.active,.slide-publisher-history.active*/
.slide-author-by-title-history.active,.slide-publisher-by-title-history.active,.slide-author-history.active,.slide-publisher-history.active {
  opacity: 1;
  z-index: 1;
}



  /* XXXXXXXXXXXXXXXXXXX
------------------------------- */